home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / gamesrc / rtanksrc / dtypes.h < prev    next >
Text File  |  1995-03-07  |  232b  |  11 lines

  1. typedef unsigned char BYTE;
  2. typedef unsigned char byte;
  3. typedef unsigned short WORD;
  4. typedef signed long LONG;
  5. typedef unsigned long DWORD;
  6. typedef char * PSTR;
  7. typedef int BOOL;
  8.  
  9. #define TRUE  1
  10. #define FALSE 0
  11.